return "JUMP TO MOVIE BUTTON" & RETURN & RETURN & "A click on the sprite makes the playback head jump to any other movie available to your system. An optional marker name can be used to jump to a precise point in the new movie. (Use the 'Jump to Marker Button' behavior to jump to a marker in the current movie)." & RETURN & RETURN & "The movie is stored in the form of a relative path (or an absolute path if the movie is saved on a different hard drive). If you subsequently move either the current movie or the target movie, a dialog will appear to allow you to relocate the target movie. If this happens at authortime, it is best to reselect the movie in the Behavior Parameters dialog so that the correct relative path is stored." & RETURN & RETURN & "In order to make use of the Play and Return option, place a Play Done commandin the destination movie." & RETURN & RETURN & "If you move both the current movie and the target movie together, or if you move the folder that contains them both, no reselection should be necessary." & RETURN & RETURN & "This behavior is designed for use with the 'Jump Back Button'. You can set it to record the movie name and the frame number of the current marker so that the 'Jump Back Button' can subsequently return. NOTE: This feature relies on a global variable: gNavigationButtonList." & RETURN & RETURN & "PERMITTED MEMBER TYPES" & RETURN & "Graphic members" & RETURN & RETURN & "PARAMETERS:" & RETURN & "* Movie to jump to" & RETURN & RETURN & "This is set through an 'Open file' dialog before the Behavior Parameters dialog opens. If you have already chosen a movie, either click on 'Cancel' to preserve your existing choice, or choose a new movie." & RETURN & RETURN & "* Marker to jump to in the new movie (optional)" & RETURN & "* 'Go to' or 'Play and return'?" & RETURN & "* Remember current marker for Back button?" & RETURN & RETURN & "Select 'Remember current marker for Back button' to ensure that the behavior 'remembers' which markers have already been visited." & RETURN & RETURN & "Use the associated 'Jump Back Button' behavior on a separate sprite to return to visited movies in reverse order." & RETURN & RETURN & "ASSOCIATED BEHAVIORS:" & RETURN & "+ Jump to Marker Button" & RETURN & "+ Jump Back Button" & RETURN & "+ Jump Forward Button" & RETURN & "+ Push Button (to alter rollover / mouseDown states)"
end
on getBehaviorTooltip
return "Use with graphic members." & RETURN & RETURN & "When you drop this behavior on a sprite, you will be" & RETURN & "invited to choose which movie to jump to on mouseUp." & RETURN & RETURN & "Use this behavior with the 'Jump Back Button' to allow" & RETURN & "the user to return to visited movies." & RETURN & RETURN & "The behavior uses the FileIO displayOpen dialog to" & RETURN & "locate a movie anywhere on your system." & RETURN & "It calculates and uses relative path to the movie."
currentMarker = [#frame: marker(0), #movie: the movieName]
if myReturn then
gNavigationButtonList.stack.append(currentMarker)
if not gNavigationButtonList.index.getPos(currentMarker) then
gNavigationButtonList.index.append(currentMarker)
end if
gNavigationButtonList.forward = []
end if
if myJumpMode = "Go to" then
go(marker(myDistantMarker), myDistantMovie)
else
play frame marker(myDistantMarker) of movie myDistantMovie
end if
if the movieName = myDistantMovie then
if the frameLabel <> myDistantMarker then
ErrorAlert(me, #invalidMarker, currentMarker)
end if
end if
end
on ErrorAlert me, theError, data
behaviorName = string(me)
delete word 1 of behaviorName
delete char -30001 of behaviorName
delete char -30001 of behaviorName
case data.ilk of
#void:
data = "<void>"
#symbol:
data = "#" & data
end case
case theError of
#getPDL_NoMovie:
beep()
return [#getPDLError: [#comment: "Click 'Cancel': No movie was chosen.", #format: #string, #range: [EMPTY], #default: EMPTY]]
#getPDL_Invalid:
alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & RETURN & "Parameters for behavior " & myBehaviorName & " have not been correctly set. Select a valid movie name in the Behavior Parameters dialog." & RETURN & RETURN & "Current movie = " & data)
halt()
#invalidGlobal:
alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & RETURN & "Behavior " & myBehaviorName & " requires a global gNavigationButtonList with the structure:" & RETURN & "[#stack [...], #index: [...], #forward: [...]]" & RETURN & RETURN & "Current value = " & data)
abort()
#invalidMarker:
if the runMode = "Author" then
put RETURN & the labelList
alert("BEHAVIOR ERROR: " & data & ", Sprite " & me.spriteNum && RETURN & "Behavior " & myBehaviorName & RETURN & RETURN & "There is no marker " & QUOTE & myDistantMarker & QUOTE & " in movie " & myDistantMovie & ". Enter a valid marker (see Message Window) in the Behavior Parameters dialog.")